Skip to content

Conversation

@paula-aribeiro
Copy link

No description provided.

Copy link
Author

@paula-aribeiro paula-aribeiro left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oi pessoal, parabéns pelo trabalho em equipe e pela landing page de vocês, ficou animal!

Vocês captaram bem a ideia da marca, tanto no layout, com as escolhas de cores e fonte, quanto no conteúdo, com a escolha dos textos e das seções do site. Também gostei que vocês tiveram o cuidado de manter o header e footer padronizados, o que torna a usabilidade muito fluida.

Quanto ao código, no geral está bem organizado, exceto algumas correções que fiz abaixo. Eu só queria destacar um ponto negativo que é a repetição de código nos arquivos CSS. Entendo que vocês quiseram fazer um CSS pra cada um, pra ficar mais fácil trabalhar em paralelo. Mas o usual é ter um style.css, que contém as estilizações comuns em todas as páginas (como header e footer) e outros arquivos com as estilizações específicas. Isso evita que o código fique repetido e se algum dia alguém quiser trocar a cor de um menu, não tem que caçar todos os menus em todos os CSS para alterar.

Parabéns pelo trabalho e continuem evoluindo 🚀 🚀 🚀

<p><a href="f4lifefaq.html" class="menuFAQ">FAQ</a><p><a href="quemSomosf4life.html" class="menu">Quem Somos</a></nav>
</header>
<section class="sobreNos">
<h1 class="empresaNome">F 4 L I F E</h1>
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

É possível usar o CSS para controlar o espaçamento entre as letras. Veja como fazer isso aqui: https://cssreference.io/property/letter-spacing/

<section class="sobreNos">
<h1 class="empresaNome">F 4 L I F E</h1>
<h2>Moradias univesitárias</h2>
<h3 class="slogan">As melhores moradias para as melhores pessoas.</h3>
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Senti falta de mais informações sobre a empresa na página principal. Entendo que vocês quiseram separar os arquivos para ficar mais fácil trabalhar em paralelo, mas a página inicial tem que ser a mais cativante em uma landing page

Comment on lines +107 to +152
.brianImage {
display: block;
width: 15vw;
height: 30vh;
grid-column-start: 1;
grid-column-end: 2;
}

.brianNome {
display: block;
grid-column-start: 1;
grid-column-end: 2;
grid-row-start: 2;
}

.yanImage {
display: block;
width: 15vw;
height: 30vh;
grid-column-start: 2;
grid-column-end: 3;
}

.yanNome {
display: block;
grid-column-start: 2;
grid-column-end: 3;
grid-row-start: 2;
grid-row-end: 3;
}

.jhonatanImage {
display: block;
width: 15vw;
height: 30vh;
grid-column-start: 3;
grid-column-end: 4;
}

.jonathanNome {
display: block;
grid-column-start: 3;
grid-column-end: 4;
grid-row-start: 2;
grid-row-end: 3;
}
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As classes de nome e de imagem estão com código repetido. Poderia ser criada uma classe para as propriedades em comum e ids para propriedades específicas

Comment on lines +163 to +194
.faceLogo {
margin-top: 30px;
margin-left: 13px;
width: 30px;
height: 30px;
}

.faceLogo:hover{
opacity: 50%;
}

.instaLogo {
margin-top: 30px;
margin-left: 13px;
width: 30px;
height: 30px;
}

.instaLogo:hover{
opacity: 50%;
}

.twitterLogo {
margin-top: 30px;
margin-left: 13px;
width: 30px;
height: 30px;
}

.twitterLogo:hover{
opacity: 50%;
}
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mesma coisa em relação a código repetido e criação de classe

}


@media screen and (max-device-width : 420px){
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Para o modelo responsivo, faltou ajustar o menu
image

O restante ficou muito bom!

Comment on lines +27 to +33
<select id="assunto">
<option>Informações</option>
<option>Dúvidas</option>
<option>Sugestões</option>
<option>Críticas</option>
<option>Outros</option>
</select>
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Booooa 😄

Comment on lines +37 to +45
</section>
<footer>
<a target="_blank" href="https://www.facebook.com/"><img src="white-facebook-icon-transparent-0.jpg" alt="facebook" class="faceLogo"></a>
<a target="_blank" href="https://www.instagram.com/?hl=pt-br"><img src="Instagram-Logo-White-300x300.png" alt="instagram" class="instaLogo"></a>
<a target="_blank" href="https://twitter.com/login?lang=pt"><img src="twitter-xxl.png" alt="twitter" class="twitterLogo"></a>
<p class="copyRight">Copyright © 2019 | Designer by Yan Corrêa, Jhonatan Felipe and Brian Mello </p>
</footer>
</body>
</html> No newline at end of file
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cuidado com indentação

border: #6cd8d1 3px solid;
}

@media screen and (max-width:650px){
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Essa página também ficou muito boa no formato mobile, mas poderia ter colocado uma margem para que o formulário não ficasse tão próximo da borda da tela
image

Comment on lines +43 to +53
section {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr;
grid-gap: 20px;
background-color: #3c495f;
height: 100%;
justify-items: center;
align-items: center;
padding: 100px 20px 100px;
}
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shooooow, parabéns!

Comment on lines +145 to +149
section{
display: grid;
grid-template-columns: 1fr 1fr;
padding: 50px 20px 50px
}
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Muito bom 😄
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants